跳到主要内容

C++ const 形参

当形参是常量时,用实参初始化形参时忽略顶层 const,所以

void fcn(const int i)

可以传入 const int 也可以传入 int